home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / READMEFIRST < prev    next >
Encoding:
Text File  |  1991-12-11  |  1.3 KB  |  38 lines  |  [TEXT/MPS ]

  1. AEGestalt is a MacApp 3.0 application which shows how to make use of the builtin
  2. Apple events support. The application will query for a node, and get the 
  3. gConfiguration information from the same program running on either the same
  4. or another machine.
  5.  
  6.  
  7. System dependencies:
  8.  
  9. MPW     3.2
  10. MPW     C++ 3.2b2 or higher
  11. MacApp     3.0b3
  12. System     7.0 and 7.0.1
  13.  
  14.  
  15. For more information, correspondance and bug reporting, send email to me:
  16. ksand@apple.com       (Usenet)
  17. KSAND                (AppleLink)
  18. 75300,1331            (CompuServe)
  19.  
  20. It does not either hurt to mention my name in the source code or any About… box
  21. if you are using parts of this code :-).
  22.  
  23. Kent Sandvik DTS
  24.  
  25. More ramblings from Kent:
  26.  
  27. • Why all the files?
  28.     I wanted to place each class in a separate file, header-member function combination.
  29.     This to test out if this is better concerning compilation and linking times.
  30.     I'm still not impressed, but in the case of reusing classes it's more fun to
  31.     copy a file, than to copy and paste code.
  32.     
  33. • Why all the empty constructors?
  34.     This because MPW 3.2 C++ generates ptabs for each copy constructor (default one
  35.     that the compiler generates if one is missing), and my creating empty ones we
  36.     get a smaller global data space. Well, we are saving about 3-4%...
  37.  
  38. • Read the source code for more illuminating comments!